home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Events / Count Examples next >
Encoding:
Text File  |  1996-01-25  |  336 b   |  9 lines  |  [TEXT/ToyS]

  1. tell application "FileMaker Pro"
  2.     count record of first document -- # records found
  3.     count record of first database -- total records in file
  4.     count layout of database "Test1"
  5.     count cell of last database
  6.     count field of layout 1 of database "Test1"
  7.     count FileMaker script of database "Test1"
  8.     count request of database "Test1"
  9. end tell